home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
MiniExamples
/
ZooView
/
RightSubView.h
< prev
next >
Wrap
Text File
|
1991-09-10
|
551b
|
31 lines
/*
* RightSubView.m
*
* Purpose:
* This object simply blasts an image to itself. Knows the name of the
* image, too.
*
* You may freely copy, distribute, and reuse the code in this example.
* NeXT disclaims any warranty of any kind, expressed or implied, as to its
* fitness for any particular use.
*
* Written by: Mary McNabb
* Created: Apr 91
*
*/
#import <appkit/View.h>
#define MAXLEN 20
@interface RightSubView:View
{
char animalName[MAXLEN];
}
- drawSelf:(const NXRect *)r :(int)c;
- setAnimalPicture:(char *)path;
@end